body {
  margin: 0;
  padding: 0;
  background-color:  #AA8D6A;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  width: 90%;
  max-width: 1000px;
}

.item {
  background-color: #1D3440;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  color: #AA8D6A;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.item img {
  margin-top: 0.5rem;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
